home *** CD-ROM | disk | FTP | other *** search
- global gMasterData, grollerList, gLastRoller, gLastMC
-
- on exitFrame
- set thisMC to the mouseCast
- if thisMC <> gLastMC then
- set thisName to the name of member thisMC
- if thisName contains "roll" then
- soundOrNext()
- exit
- end if
- set rollTest to 0
- set rollList to getProp(grollerList, #sprites)
- repeat with X in rollList
- if thisMC = the memberNum of sprite X then
- set rollTest to 1
- set hotSprite to X
- set thisName to the name of member thisMC
- exit repeat
- end if
- end repeat
- if rollTest then
- showRoller(hotSprite, thisName)
- showBalloon(thisName)
- if hotSprite <> gLastRoller then
- puppetSprite(gLastRoller, 0)
- set gLastRoller to hotSprite
- end if
- else
- clearRollers()
- clearBalloon()
- end if
- end if
- soundOrNext()
- end
-